
:root {
        --color-white: #ffffff;
        --color-light-grey: #eeeff0;
        --color-grey: #5f656b;
        --color-black: #131E29;
        --color-red: #EA0029;
        --color-magenta: #FF00FF;   
        --color-light-red: #FF3E60;

        --font-title: 3.5rem 'Montserrat', sans-serif;
        --font-subtitle: 1.6rem 'Montserrat', sans-serif;
        --font-subtitle-content: 1.2rem 'Montserrat', sans-serif;
        --font-paragraph: 0.9rem 'Montserrat', sans-serif;
        --font-small: 0.8rem 'Montserrat', sans-serif;
        --font-button: 0.8rem 'Montserrat', sans-serif;

        --transitions1: all 0.2s ease 0s;
        --transitions2: all 0.2s ease 0.2s;
        --transitions3: all 0.7s ease 0s;
        --animation: element 4s linear infinite 0s;

        --shadow1: 0 0 4px rgba(63, 63, 63, 0.1);
        --shadow2: 0 5px 15px rgba(63, 63, 63, 0.2);
    }

    html {
        scroll-behavior: smooth;
    }

    body{
        overflow-x: hidden;
    }

    h1{
        font: var(--font-title);
    }

    h2 {
        font: var(--font-subtitle);
    }

    h3, h4, h5, h6{
        font: var(--font-subtitle-content);
    }

    p{
        font: var(--font-paragraph);
    }

    /* width */
    ::-webkit-scrollbar {
        width: 8px;
    }

    /* Track */
    ::-webkit-scrollbar-track {
        background: var(--color-light-grey); 
    }

    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: var(--color-grey);
        border-radius: 4px;
    }

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-black); 
    }

/* ############################################## Header ############################################## */

#header{
    background-color: var(--color-black);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 95vh;
    min-height: 750px;
    position: relative;
    width: 100%;
}

    /* ------------ Video ------------ */

    #header .header_video {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: absolute;
        z-index: 0;
    }

    #header video {
        position: absolute;
        min-height: 100%;
        min-width: 100%;
        z-index: 0;
        transform: translateX(50% -25%) translateY(50% -25%);
    }

    .overlay{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: var(--color-black);
        opacity: 0.3;
        z-index: 1;
    }

    /* ------------ Nav ------------ */

    #nav{
        height: 68px;
        margin: 2em 0 .6rem;
        position: relative;
        z-index: 2;
    }

        #nav .nav_header{
            display: flex;
            justify-content: flex-end; 
            align-items: center; 
            flex-direction: row; 
            flex-wrap: wrap;
            gap: .3rem;
        }

            #nav img{
                min-height: 34px;
                max-height: 50px;
                margin-left: 2px;
            }

            #nav .logo_mic {
                flex-grow:1;
                flex-shrink:1;
                align-self:flex-start;
            }

            #nav .nav_button,
            #nav .nav_button-terminos {
                height: auto;
                padding: .35rem .3rem;
                position: relative;
                transition: var(--transitions1);
                min-width: 180px;
                text-align: center;
            }

            #nav .nav_button-terminos {
                text-align: center;
            }

            #nav .nav_button::before,
            #nav .nav_button-terminos::before{
                background-image: url(../img/movies-dots.png);
                background-position: center center;
                background-repeat: no-repeat;
                background-size: contain;
                bottom: -5px;
                content: "";
                height: 6px;
                left: calc(50% - 16px);
                opacity: 0;
                position: absolute;
                transition: var(--transitions1);
                width: 31px;
            }

            #nav .nav_button:hover::before,
            #nav .nav_button-terminos:hover::before{
                opacity: 1;
            }

                #nav .nav_button>a,
                #nav .nav_button-terminos>a{
                    color: var(--color-white);
                    display: inline-block;
                    font: var(--font-button);
                    font-weight: 700;
                    font-kerning: normal;
                    text-align: right;
                    text-decoration: none;
                    text-transform: uppercase;
                    transition: var(--transitions1);
                }

                #nav .nav_button:hover>a,
                #nav .nav_button-terminos:hover>a{
                    color: var(--color-red);
                }

                #nav .nav_button>a::after {
                    background-image: url(../img/search.svg);
                    background-size: contain;
                    background-position: center center;
                    background-repeat: no-repeat;

                    content: '';
                    display: inline-block;
                    height: 16px;
                    position: relative;
                    left: 10px;
                    transform: translateY(3px);
                    width: 16px;
                }

    /* ------------ Header title ------------ */

    #header .header_content{
        min-height: 100%;
        width: 100%;
        z-index: 2;
    }

    #header .header_content .row{
        height: 100%;
    }

        #header .header_content .title_block{
            overflow: hidden;
        }

        #header .header_content .title_container{
            display: flex;
            flex-direction: column;
            justify-content:center;
            height: 100%;
            padding: 4em 0;
            position: relative;
            width: 100%;
        }

            #header .header_content .title_container h1{    
                color: var(--color-white);
                font: var(--font-title);
                font-weight: 700;
                line-height: 0.96;
                margin: 0;
                overflow: visible;
                position: relative;
                text-transform: uppercase;
                text-overflow: clip;
                width: 100%;
            }

            #header .header_content .title_container p{
                color: var(--color-red);
                font: var(--font-subtitle);
                font-size: 1.4em;
                font-weight: 600;
                margin: 1em 0;
            }

            #header .header_content .title_container img{
                background-color: #009ADE;
                display: block;
                margin: 1.2em 0 1.2em 0;
                height: 40px;
                width: 40px;
            }
    
    /* ------------ Form ------------ */

    #header .form_container{
        display: flex;
        justify-content: flex-end;
        height: 100%;
        position: relative;
        transition: var(--transitions3);
        width: 100%;
    }

        #header .form_container .iframe_form{
            background-color: #ffffff;
            border: 1px solid var(--color-light-grey);
            box-sizing: border-box;
            box-shadow: var(--shadow2);
            display: flex;
            flex-direction: column;
            min-height: 550px;
            max-width: 470px;
            overflow: hidden;
            outline: 0 solid rgba(234, 0, 41, 0);
            width: 400px;
            transition: var(--transitions1);
            z-index: 10;
        }

        #header .form_container .iframe_form:hover{
            box-shadow: var(--shadow2);
            outline: 1px solid var(--color-black);
        }

        .sticky {
            position: fixed;
            top: 5vh;
        }
/* 
        #header .form_container .formulario{
            background-color: #ffffff;
            border: 1px solid var(--color-light-grey);
            box-sizing: border-box;
            box-shadow: var(--shadow2);
            display: flex;
            flex-direction: column;
            height: auto;
            max-width: 470px;
            outline: 0 solid rgba(234, 0, 41, 0);
            width: 400px;
            padding: 2em 1.4em;
            transition: var(--transitions1);
            z-index: 10;
        }

        #header .form_container .formulario:hover{
            box-shadow: var(--shadow2);
            outline: 1px solid var(--color-black);
        }

            #header .form_container .formulario>span{
                display: block;
                font: var(--font-subtitle);
                font-size: 1em;
                font-weight: 700;
                margin: 0 0 1em 0;
                text-transform: uppercase;
                color: var(--color-black);
            }

            #header .form_container .formulario label{
                color: var(--color-black);
                font: var(--font-paragraph);
                font-weight: 600;
                margin: 5px 0;
                text-transform: uppercase;
            }

            #header .form_container .formulario input{
                border: none;
                border-bottom: 1px solid var(--color-black);
                color: var(--color-grey);
                font: var(--font-paragraph);
                font-weight: 400;
                height: 40px;
                margin: 2px 0 15px 0;
                padding: 12px;
                width: 100%;
            }

            #header .form_container .formulario input:focus{
                background-color: var(--color-light-grey);
                border-bottom: 1px solid var(--color-red);
                color: var(--color-black);
                outline: none;
            }

            #header .form_container .formulario input#agree{
                border-radius: 0;
                height: 20px;
                margin: 0;
                width: 20px;
            }

            #header .form_container .formulario input#agree:checked{
                background-color: var(--color-red);
            }

            #header .form_container .formulario label[for="agree"]{
                display: block;
            }

                #header .form_container .formulario label span{
                    color: var(--color-black);
                    display: inline-block;
                    font-weight: 400;
                    margin: 0 0 0 7px;
                    text-transform: capitalize;
                    transform: translateY(-5px);
                }

            #header .form_container .formulario input[type="submit"]{
                align-self: flex-end;
                background-color: var(--color-red);
                border: none;
                color: #ffffff;
                display: block;
                font: var(--font-button);
                font-weight: 700;
                height: auto;
                margin: 1em 0 0 0;
                text-transform: uppercase;
                transition: var(--transitions1);
                width: 170px;
            }

            #header .form_container .formulario input[type="submit"]:hover{
                background-color: var(--color-light-red);
                box-shadow: var(--shadow2);
            } */

/* ############################################## Section ############################################## */

    /* ------------ Quienes somos ------------ */

#section{
    height: auto;
    overflow: hidden;
    padding: 60px 0 90px 0;
    width: 100%;
}

#section .banner {
    background-color: #f1f1ef;
    display: block;
    height: 400px;
    object-fit: cover;
    object-position: 60% center;
    width: 100%;
}

#section .about{
    margin-top: 50px;
}

    #section .tag_about{
        color: var(--color-grey);
        font: var(--font-paragraph);
        font-size: 0.85rem;
        letter-spacing: 0.23em;
        text-transform: uppercase;
    }

    #section .tag_about span{
        display: inline-block;
        text-align: left;
        width: 100%;
    }

    #section .about_container{
        background-color: var(--color-white);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        padding: 1em 0;
    }

        #section .about_container>div{
            display: flex;
            justify-content: space-between;
            padding: 1em 0;
            position: relative;
            width: 100%;
        }

            #section .about_container>div h2{
                font-family: var(--font-subtitle);
                font-size: 2em;
                font-weight: 700;
                position: relative;
                text-transform: uppercase;
                transform: translateY(-5px);
            }

            #section .about_container>div h2::after{
                background-image: url(../img/movies-dots.png);
                background-position: center center;
                background-repeat: no-repeat;
                background-size: cover;

                content: "";
                display: block;
                height: 6px;
                position: relative;
                transform: translateY(15px);
                width: 31px;
            }

        #section .about_container p{
            color: var(--color-grey);
            font-weight: 300;
            line-height: 1.5em;
            margin-top: .6em;
        }

            #section .about_container p span{
                color: var(--color-grey);
                font-weight: 600;
                line-height: 1.5em;
            }

        #section .about_container a{
            background-color: var(--color-white);
            border: 1px solid var(--color-black);
            color: var(--color-black);
            display: inline-block;
            font: var(--font-button);
            font-weight: 700;
            height: auto;
            margin: 1em 0 0 0;
            padding: 0.9em 0;
            text-align: center;
            text-decoration: none;
            text-transform: uppercase;
            transition: var(--transitions1);
            width: 220px;
        }

        #section .about_container a:hover{
            background-color: var(--color-black);
            box-shadow: var(--shadow2);
            color: var(--color-white);
            width: calc(220px + 0.5em);
        }

    /* ------------ Términos ------------ */
    #section .terms_container {
        flex-direction: column;
    }

    /* ------------ Licencias------------ */
    
    #section .licencias{
        background-color: var(--color-light-grey);
        background-repeat: no-repeat;
        background-position: calc(100% - 50px) 5vh;
        height: auto;
        margin: 60px 0;
        padding: 2em 0;
        width: 100%;
    }

        #section .licencias .licencias_container h2, #section .licencias .licencias_container img{
            color: var(--color-grey);
            display: block;
        }

        #section .licencias .licencias_container h2{
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            word-spacing: .5em;
        }

        #section .licencias .licencias_container img{
            margin: 1.5em 0 0 0;
            width: 80%;
        }


    /* ------------ Stores------------ */

    #section .stores{
        height: auto;
        margin-top: 90px;
        width: 100%;
    }

    #section .stores_titles{
        margin: 1.2em 0;
    }

        #section .stores_titles .tag_stores{
            font: var(--font-paragraph);
            font-size: 0.85rem;
            letter-spacing: 0.2em;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

            #section .stores_titles .tag_stores span{
                display: inline-block;
                text-align: left;
                width: 100%;
            }

        #section .stores_titles .know_container{
            padding: .5em 0;
        }

            #section .stores_titles .know_container>h2{
                font-weight: 700;
                line-height: .9em;
                margin: 0;
                padding: 0;
                text-transform: uppercase;
            }

    #section .stores_content{
        background-attachment: fixed;
        background-color: var(--color-light-grey);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }

        #section .store_video{
            display: flex;
            justify-content: center;
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: absolute;
            z-index: 0;
        }

        #section .store_video video{
            position: absolute;
            min-height: 100%;
            min-width: 100%;
            transform: translateY(-25%);
            z-index: 0;
        }

        #section .stores_content .stores_column{
            display: flex;
            height: 400px;
            flex-direction: column;
            justify-content: space-between;
        }

            #section .stores_content .stores_container{
                width: 100%;
            }
            
            #section .stores_content .stores_container .store_button{
                align-self: flex-end;
                background-color: var(--color-red);
                border: none;
                border-radius: 0;
                color: #ffffff;
                display: block;
                font: var(--font-button);
                font-weight: 700;
                height: auto;
                margin: 2em 0 0 0;
                position: relative;
                text-transform: uppercase;
                transition: var(--transitions1);
                width: 230px;
                z-index: 1;
            }

            #section .stores_content .stores_container .store_button:hover{
                background-color: var(--color-light-red);
                box-shadow: var(--shadow2);
                width: calc(230px + .5em);
            }
            
    #section .stores_content .store_inf{
        margin: 1em 0 0 0;
        transform: translateY(60px);
    }

    #section .stores_content .store_inf .fila{
        align-items: flex-start;
        display: flex;
        justify-content: flex-start;
        height: auto;
        width: 100%;
    }

        #section .stores_content .store_inf .store_detail{
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin: 0 0 1em 0;
            position: relative;
            transition: var(--transitions1);
            width: 180px;
        }

        #section .stores_content .store_inf .store_detail:hover{
            transform: translateY(-5px);
        }

            #section .stores_content .store_inf .store_detail>img{
                align-self: center;
                box-sizing: content-box;
                height: 40px;
                padding: 10px;
                transform: translateY(20px);
                width: 40px;
            }

            #section .stores_content .store_inf .store_detail>div{
                align-self: center;
                box-sizing: content-box;
                color: var(--color-red);
                font: var(--font-title);
                font-size: 2em;
                font-weight: 700;
                height: 40px;
                letter-spacing: -.1em;
                padding: 10px;
                transform: translateY(20px);
                width: 40px;
            }

            #section .stores_content .store_inf .fila>div:nth-child(2) span{
                background-color: var(--color-black);
                color: var(--color-white);
            }

            #section .stores_content .store_inf .store_detail>span{
                background-color: var(--color-white);
                box-sizing: border-box;
                box-shadow: var(--shadow1); 
                font: var(--font-subtitle);
                font-size: .9rem;
                font-weight: 600;
                padding: 1.5em 1em;
                width: 100%;
            }

    #section .stores_content .store_button{
        background-color: var(--color-red);
        border-radius: 20px;
        color: var(--color-white);
        display: inline-block;
        font: var(--font-button);
        font-weight: 600;
        height: auto;
        padding: 0.9em 0;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        transition: var(--transitions1);
        width: 232px;
    }

    #section .stores_content .store_button:hover{
        background-color: var(--color-magenta);
        box-shadow: var(--shadow2);
        width: calc(232px + 0.5em);
    }

/* ############################################## Copyright ############################################## */

#footer{
    background-color: var(--color-light-grey);
    height: auto;
    margin-top: 20px;
    padding: 1.5em 0;
    width: 100%;
}

    #footer .redes{
        align-items: center;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

        #footer .redes a{
            display: flex;
            justify-content: center;
            height: 38px;
            margin: 0 0.5em;
            width: 38px;
        }

        #footer .redes span{
            color: #898E94;
            margin: 0 0.5em;
        }

        #footer .redes a>img{
            align-self: center;
            max-height: 100%;
        }

    #footer .copyright{
        color: var(--color-grey);
        font: var(--font-small);
        font-weight: 300;
        text-align: center;
    }

/* ############################################## Media Queries ############################################## */

@media only screen and (max-width: 576px){

    #header{
        max-height: 800px;
        margin-bottom: 15em;
    }

    /* ------------ Nav ------------ */
    #nav {
        position: relative;
        z-index: 10;
    }

    #nav .nav_button,
    #nav .nav_button-terminos {
        min-width: 180px;
        top: -1rem;
        position: relative;
    }

    #nav .nav_button-terminos:hover,
    #nav .nav_button:hover {
        min-width: 185px;
    }

    #nav .nav_button>a{
        text-align: right;
    }

    /* ------------ Header title ------------ */

    #header .header_content .title_container{
        display: flex;
        height: 390px;
        padding: 4em 0 2em 0;
    }

        #header .header_content .title_container p{    
            font-size: 1em;
        }

        #header .header_content .title_container h1{
            overflow: hidden;
            font-size: 2.5em;
        }

        #header .header_content .title_container img{
            margin-left: 0.3em;
            /* width: 16px; */
        }

    /* ------------ Form ------------ */

    #header .form_container{
        display: flex;
        justify-content: center;
    }

        #header .form_container .iframe_form{
            /* height: auto; */
            max-width: 420px;
            position: relative; 
            width: 100%;
        }

        /* #header .form_container .formulario input[type="submit"]{
            align-self: center;
        }

        #header .form_container .formulario{
            height: auto;
            max-width: 420px;
            position: relative;
            width: 100%;
        }

        #header .form_container .formulario input[type="submit"]{
            align-self: center;
        } */

        .sticky {
            position: relative;
            top: 0;
        }

    /* ------------ Section ------------ */

    #section .licencias{
        background-image:none;
    }

        #section .tag_about span{
            text-align: center;
        }
    
        #section .stores .stores_container .store_button{
            align-self: center;
        }
    /* ------------ Licencias------------ */

        #section .licencias .licencias_container h2{
            text-align: center;
        }

        #section .licencias .licencias_container img{
            width: 100%;
        }

    /* ------------ Stores ------------ */

    #section .stores_titles .tag_stores span{
        text-align: center;
    }

    #section .stores_titles .know_container h2{
        text-align: center;
    }

    #section .about_container .nav_button{
        align-self: center;
    }

    #section .stores_content .store_inf .store_detail{
        margin: 0 0.5em 1em 0.5em;
        width: 100%;
    }

    #section .stores_content .stores_container{
        display: flex;
        justify-content: center;
    }

        #section .stores_content .stores_container .store_button{
            align-self: center;
        }

}

@media only screen and (min-width: 577px) and (max-width: 767px){
    
    #header{
        max-height: 800px;
        margin-bottom: 15em;
    }

    /* ------------ Header title ------------ */

    #header .header_content .title_container{
        display: flex;
        height: 400px;
        padding: 3em 0 3em 0;
    }

        #header .header_content .title_container p{    
            font-size: 1em;
        }

        #header .header_content .title_container h1{    
            font-size: 3em;
        }

        #header .header_content .title_container img{
            margin-left: 0.3em;
            /* width: 16px; */
        }

    /* ------------ Form ------------ */

    #header .form_container{
        display: flex;
        justify-content: center;
    }

        #header .form_container .iframe_form{
            /* height: auto; */
            max-width: 420px;
            position: relative;
            width: 100%;
        }

        /* #header .form_container .formulario{
            height: auto;
            max-width: 420px;
            position: relative;
            width: 100%;
        }

        #header .form_container .formulario input[type="submit"]{
            align-self: center;
        } */

        .sticky {
            position: relative;
            top: 0;
        }

    /* ------------ Section ------------ */

    #section .tag_about span{
        text-align: center;
    }

    /* ------------ Licencias------------ */

    #section .licencias{
        background-image:none;
    }

    #section .licencias .licencias_container h2{
        text-align: center;
    }

    #section .licencias .licencias_container img{
        width: 70%;
        margin-left: 15%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px){

    #header{
        max-height: 800px;
        margin-bottom: 2em;
    }

    /* ------------ Header title ------------ */

    #header .header_content .title_container{
        padding: 4em 0 8em 0;
    }

        #header .header_content .title_container h1{
            font-size: 3em;
        }

    /* ------------ Form ------------ */

        #header .form_container .iframe_form{
            max-width: 310px;
        }

        /* #header .form_container .formulario{
            max-width: 310px;
        } */
}

@media only screen and (min-width: 992px){
    
    /* ------------ Header title ------------ */

    #header .header_content .title_container{
        padding: 4em 0 10em 0;
    }

    /* ------------ Form ------------ */

    #header .form_container .formulario{
        max-width: 470px;
    }
}